home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Magazine / WiredWorld / THOR_2.5 / THOR_2.5a_upgrade / rexx / examples / HitRate.br < prev    next >
Text File  |  1997-09-15  |  373b  |  23 lines

  1. /*  $VER: HitRate.br 3.1 (7.6.94)
  2.  *
  3.  *  Get hitrate for buffer system
  4.  */
  5.  
  6.     if ~show('p', 'BBSREAD') then do
  7.         address command
  8.             "run >nil: `GetEnv THOR/THORPath`bin/LoadBBSRead"
  9.             "WaitForPort BBSREAD"
  10.     end
  11.  
  12.     options results
  13.     address BBSREAD
  14.  
  15.  
  16.     BUFHITRATE RATES
  17.  
  18.     say 'Global hitrate:' result
  19.     say 'Read hitrate:  ' RATES.READ
  20.     say 'Write hitrate: ' RATES.WRITE
  21.  
  22.     exit
  23.